home *** CD-ROM | disk | FTP | other *** search
- /**
- GRAB Graph Layout and Browser System
-
- Copyright (c) 1989, Tera Computer Company
- **/
-
- /* header file for checkpoints */
-
- #ifndef checkpoint_h
- #define checkpoint_h
-
- #include "digraph.h"
-
- typedef struct /* info for a digraph */
- {
- DIGRAPH* digraph; /* for now, just save the digraph */
- } CHECKPT;
-
- int num_ckpts; /* number of checkpoints */
- CHECKPT** ckpts; /* array of checkpoints */
- int curr_ckpt; /* index into array to access current checkpoint */
-
- #endif
-